home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / DomonicDefence4.swf / scripts / DefineButton2_307 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2005-09-27  |  420 b   |  21 lines

  1. on(press){
  2.    if(_root.spoints > 0)
  3.    {
  4.       if(_root.sum < 5)
  5.       {
  6.          _root.sum += 1;
  7.          _root.sum1 = "Spells: " + _root.sum;
  8.          _root.spoints -= 1;
  9.          _root.mstats = "You currently have " + _root.spoints + " stats.";
  10.       }
  11.       else
  12.       {
  13.          _root.no = "Spells currently maxed!";
  14.       }
  15.    }
  16.    else
  17.    {
  18.       _root.no = "You have no more points!";
  19.    }
  20. }
  21.